-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Restructure the documentation #177
Restructure the documentation #177
Conversation
15ea92f
to
384b65e
Compare
384b65e
to
52203f2
Compare
@shreyas-s-rao I updated the PR. PTAL. |
Signed-off-by: Swapnil Mhamane <[email protected]>
3695810
to
da3aa82
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@swapnilgm Thanks for the excellent and much-required PR! Thanks for the updating the docs as well. I have suggested a couple of changes in the CI scripts as well as a few vocabulary changes for the docs. Please address them. Thanks.
.ci/unit_test
Outdated
export GOBIN="${SOURCE_PATH}/tmp/bin" | ||
export PATH="${GOBIN}:${PATH}" | ||
fi | ||
cd "${SOURCE_PATH}" | ||
|
||
# Install Ginkgo (test framework) to be able to execute the tests. | ||
go get -u github.com/onsi/ginkgo/ginkgo |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
go get -u github.com/onsi/ginkgo/ginkgo | |
GO111MODULE=off go get -u github.com/onsi/ginkgo/ginkgo |
c03f75c
to
98158cf
Compare
thanks you for detailed review. I have addressed comments. PTAL. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@swapnilgm Thanks for making the requested changes. I've suggested just a few more changes. Please address them.
.ci/integration_test:L72,L48: s/etcbrctl/etcdbrctl/g
.ci/integration_test:L74: Add GO111MODULE=ON
to go build
command
doc/proposals/design.md:L42,L79: (images/_____)
-> (../images/_____)
.ci/integration_test
Outdated
@@ -27,25 +27,12 @@ VCS="github.com" | |||
ORGANIZATION="gardener" | |||
PROJECT="etcd-backup-restore" | |||
REPOSITORY=${VCS}/${ORGANIZATION}/${PROJECT} | |||
VERSION_FILE="$(readlink -f "${SOURCE_PATH}/VERSION")" | |||
VERSION_FILE="$(readlink -f "${SOURCE_PATH}/VERSION")" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
VERSION_FILE="$(readlink -f "${SOURCE_PATH}/VERSION")" | |
VERSION_FILE="$(readlink -f "${SOURCE_PATH}/VERSION")" |
### Updating dependencies | ||
|
||
The `Makefile` contains a rule called `revendor` which performs `go mod vendor` and `go mod tidy`. | ||
* `go mod vendor` resets the main module's vendor directory to include all packages needed to build and test all the main module's packages. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* `go mod vendor` resets the main module's vendor directory to include all packages needed to build and test all the main module's packages. | |
* `go mod vendor` resets the main module's vendor directory to include all packages needed to build and test all the main module's packages. It does not include test code for vendored packages. |
98158cf
to
c729979
Compare
Done |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Co-Authored-By: Shreyas Rao <[email protected]> Signed-off-by: Swapnil Mhamane <[email protected]>
c729979
to
f620df1
Compare
Signed-off-by: Swapnil Mhamane [email protected]
What this PR does / why we need it:
Restructure the documentation, with some minor updates regrading go module for dependency management.
Which issue(s) this PR fixes:
Fixes #
Special notes for your reviewer:
Release note: